home *** CD-ROM | disk | FTP | other *** search
- /*
- * stdc
- * ----
- * Contains #includes for all the necessary standard include files.
- *
- */
-
- #ifndef _U_H
- #define _U_H
-
- typedef unsigned char uchar;
- typedef unsigned short ushort;
- typedef unsigned int uint;
- typedef unsigned long ulong;
-
- #endif
-
- #include <assert.h>
- #include <ctype.h>
- #include <errno.h>
- #include <float.h>
- #include <limits.h>
- #include <locale.h>
- #include <math.h>
- #include <setjmp.h>
- #include <signal.h>
- #include <stdarg.h>
- #include <stddef.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
-
-